home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / netclb23.zip / FILE.H < prev    next >
C/C++ Source or Header  |  1994-05-20  |  614b  |  18 lines

  1. #ifndef FILE_H
  2. #define FILE_H
  3.  
  4. /****************************/
  5. /* File Services prototypes */
  6. /****************************/
  7.  
  8. int EraseFiles( byte searchAttributes,byte directoryHandle,char *filePath);
  9. int PurgeAllErasedFiles(void);
  10. int PurgeErasedFiles(void);
  11. int ScanFileInformation(byte directoryHandle, char *filePath,
  12.      byte searchAttributes,int *sequenceNumber,char *fileName,
  13.      byte *fileAttributes,byte *extendedFileAttributes,long *fileSize,
  14.      char *creationDate,char *lastAccessDate,char *lastUpdateDateAndTime,
  15.      char *lastArchiveDateAndTime,long *fileOwnerId);
  16.      
  17. #endif
  18.